home *** CD-ROM | disk | FTP | other *** search
/ El Mac 9 / El Mac 9.iso / Shareware / Applications / Charting Coach v1.5 / Charting Coach v1.dxr / 00090.ls < prev    next >
Encoding:
Text File  |  1996-04-08  |  403 b   |  18 lines

  1. on enterFrame
  2.   global bioInfo
  3.   if the doubleClick then
  4.     exit
  5.   end if
  6.   repeat with i = 1 to 11
  7.     set the hilite of member ("biodata " & i) to 0
  8.   end repeat
  9.   repeat with i = 13 to 15
  10.     set the hilite of member ("biodata " & i) to 0
  11.   end repeat
  12.   set x to count(bioInfo)
  13.   repeat with i = 1 to x
  14.     set the hilite of member ("biodata " & getAt(bioInfo, i)) to 1
  15.   end repeat
  16.   cursor(0)
  17. end
  18.